home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / www / HTP.lha / HTP / source / ver.c < prev    next >
C/C++ Source or Header  |  1997-06-21  |  1KB  |  55 lines

  1. /*
  2. //
  3. // ver.c
  4. //
  5. // version and program information
  6. //
  7. // Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
  8. // granted by the author.  No warranties are made on the fitness of this
  9. // source code.
  10. // Amiga version - 1997 - Geert Bevin
  11. //
  12. */
  13.  
  14. #include "htp.h"
  15.  
  16. /*
  17. // program stage (alpha, beta, etc.)
  18. */
  19. #if DEBUG
  20. const char *VER_STAGE = "DEBUG RELEASE";
  21. #else
  22. const char *VER_STAGE = "RELEASE";
  23. #endif
  24.  
  25. /*
  26. // program name
  27. */
  28. const char *PROGRAM_NAME = "htp";
  29.  
  30. /*
  31. // program usage & syntax
  32. */
  33.  
  34. void DisplayHeader(void)
  35. {
  36.     printf("\n%s %d.%02d (%s) - HTML pre-processor (%s)\n", PROGRAM_NAME, VER_MAJOR,
  37.         VER_MINOR, __DATE__, VER_STAGE);
  38.     printf("Copyright (c) 1995-96 Jim Nelson - PUBLIC DOMAIN SOFTWARE\n");
  39.     printf("Amiga version 1997    Geert Bevin (gbevin@thunderstorms.org)\n\n");
  40. }   
  41.  
  42. void usage(void)
  43. {
  44.     printf("email:\tjnelson@crl.com\n");
  45.     printf("WWW:\thttp://www.crl.com/~jnelson/htp/\n\n");
  46.     printf("usage: %s [options] <source HTML file> <reformatted HTML file>\n",
  47.         PROGRAM_NAME);
  48.     printf("       %s [options] @<response file>\n", PROGRAM_NAME);
  49.     printf("       %s [options] @\n", PROGRAM_NAME);
  50.     printf("\nSee accompanying readme.txt and on-line reference for full details.\n");
  51.     printf("\nThis is public domain software.  No person or group is entitled to\n");
  52.     printf("charge for the license or use of htp.\n");
  53. }   
  54.  
  55.